home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
mui
/
bcc_src.lha
/
Parser
/
InsertFile.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-06-08
|
316b
|
31 lines
#ifndef INSERTFILE_H
#define INSERTFILE_H
#include <stdio.h>
class InsertFile {
char *fname;
unsigned long size;
void *data;
void Load( void );
void Free( void );
public:
InsertFile( char *name ) {
fname = name;
data = 0;
}
~InsertFile() {
Free();
}
short Insert( FILE *fh );
};
#endif